/*
Theme Name: tiga
*/
@charset "UTF-8";

/* --------------
reset css
--------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 共通 */
.wrap {
  width: 100%;
  margin: 0 auto;
  background-color: #E8E8E8;
  color: #3B3B3B;
  font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

a {
  text-decoration: none;
  color: #3B3B3B;
}

a :hover {
  color: #fa7d00;
}

/* header */
header {
  background-color: #fa7d00;
  position: fixed;
  z-index: 9999;
  height: 51px;
  width: 100%;
}

header #headerWrap {
  margin: 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 51px;
}

header #headerWrap .headerTitle {
  width: 80%;
  font-weight: bold;
  padding: 10px 0;
}

header #headerWrap .headerTitle a {
  color: #fff;
}

header #headerWrap .btn-trigger {
  position: relative;
  cursor: pointer;
  width: 9%;
  height: 22px;
}

header #headerWrap .btn-trigger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

header #headerWrap .btn-trigger span:nth-of-type(1) {
  top: 0;
}

header #headerWrap .btn-trigger span:nth-of-type(2) {
  top: 10px;
}

header #headerWrap .btn-trigger span:nth-of-type(3) {
  bottom: 0px;
}

header #headerWrap .btn-trigger,
header #headerWrap .btn-trigger span {
  display: inline-block;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

header #headerWrap .btn-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

header #headerWrap .btn-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

header #headerWrap .btn-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}

header nav {
  background-color: #fa7d00;
  padding: 35px 5% 0;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s;
  width: 100%;
}

header nav li {
  padding-bottom: 35px;
}

header nav li a {
  color: #fff;
}

header .nav.active {
  opacity: 0.85;
  visibility: visible;
  width: 100%;
}

/* main */
main {
  margin: 0 5%;
  padding-top: 51px;
}

main .heading {
  text-align: center;
}

main .heading .mainTitle {
  font-size: 1.4rem;
  font-weight: bold;
  display: inline-block;
  margin: 35px 0;
}

main dl.catList {
  background-color: #fff;
  margin: 70px 0;
}

main dl.catList dt {
  background-color: #fa7d00;
  color: #fff;
  text-align: center;
  line-height: 2rem;
  margin-bottom: 35px;
}

main dl.catList dd {
  margin: 0 5%;
}

main dl.catList dd li {
  padding-bottom: 35px;
}

main dl.catList dd li .fa-chevron-circle-right {
  padding-right: 5px;
}

main dl.catList dd li a:hover {
  color: #fa7d00;
}

.card li {
  background-color: #fff;
  margin-bottom: 35px;
  height: 300px;
}

.card li .thumbnail {
  position: relative;
}

.card li .thumbnail img {
  vertical-align: bottom;
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
  object-fit: cover;
}

.card li .articleTitle {
  font-weight: bold;
  padding: 0 3%;
  height: 90px;
  display: table;
}

.card li .articleTitle h3 {
  display: table-cell;
  vertical-align: middle;
}

.pagination {
  text-align: center;
}

.pagination .current {
  font-weight: bold;
  color: #fa7d00;
}

.pagination .pager,
.pagination .first,
.pagination .prev,
.pagination .next {
  padding-right: 25px;
}

.pagination a:hover {
  color: #fa7d00;
}

.pageTop {
  font-size: 1rem;
  background-color: #fa7d00;
  display: inline-block;
  width: 2.6rem;
  height: 2.6rem;
  text-align: center;
  margin: 0 5%;
  position: fixed;
  right: 0;
  bottom: 35px;
  opacity: 0.8;
  border-radius: 30px;
}

.pageTop a {
  color: #fff;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 2.6rem;
}

/* footer */
footer {
  background-color: #fa7d00;
  color: #fff;
  font-size: 0.5rem;
  line-height: 1.5rem;
  text-align: center;
}

/* single */
.breadcrumb {
  margin: 10px 0 35px;
}

.breadcrumb li {
  display: inline;
  line-height: 1.5rem;
}

.breadcrumb li:after {
  content: '＞';
  padding: 0 5px;
}

.breadcrumb li a:hover {
  color: #fa7d00;
}

.breadcrumb li:last-of-type:after {
  content: "";
}

.breadcrumb.catBread {
  margin: 10px 0 0;
}

article .singleColumn {
  background-color: #fff;
  padding: 0 5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article .heading .articleTitle {
  text-align: left;
}

article img {
  vertical-align: bottom;
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 35px 0;
}

article p {
  margin-bottom: 15px
}

article p:last-of-type {
  padding-bottom: 35px;
}

@media screen and (min-width: 768px) {

  nav,
  header #headerWrap .btn-trigger {
    display: none;
  }

  main .heading {
    width: 80%;
  }

  main .heading .articleTitle {
    text-align: left;
  }

  main .mainWrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  main .mainWrap .leftColumn {
    width: 80%;
  }

  main .mainWrap .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  main .mainWrap .card li {
    margin: 0 5% 5% 0;
    width: 45%;
    -webkit-transition: all .3s;
    transition: all .3s;
    height: 400px;
  }

  main .mainWrap .card li:hover {
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }

  main .mainWrap .card img {
    height: 300px;
  }

  main dl.catList {
    width: 20%;
    display: table;
    margin-top: 0;
  }

  footer {
    margin-top: 70px;
  }

  article .heading {
    text-align: left;
  }

  article .singleColumn {
    margin-right: 35px;
  }

  article img {
    width: auto;
    height: auto;
  }
}

/*# sourceMappingURL=style.css.map */